This function is deprecated in favor of get_datasets

get_taxon_datasets(
  taxon,
  offset = 0L,
  limit = 20,
  sort = "+id",
  raw = getOption("gemma.raw", FALSE),
  memoised = getOption("gemma.memoised", FALSE),
  file = getOption("gemma.file", NA_character_),
  overwrite = getOption("gemma.overwrite", FALSE),
  ...
)

Arguments

taxon

can either be Taxon ID, Taxon NCBI ID, or one of its string identifiers: scientific name, common name. It is recommended to use Taxon ID for efficiency. Please note, that not all taxa have all the possible identifiers available. Use the get_taxa_by_ids function to retrieve the necessary information. For convenience, below is a list of officially supported taxa:

IDComm.nameScient.nameNcbiID
1humanHomo sapiens9606
2mouseMus musculus10090
3ratRattus norvegicus10116
11yeastSaccharomyces cerevisiae4932
12zebrafishDanio rerio7955
13flyDrosophila melanogaster7227
14wormCaenorhabditis elegans6239
offset

The offset of the first retrieved result.

limit

Optional, defaults to 20. Limits the result to specified amount of objects. Has a maximum value of 100. Use together with offset and the totalElements attribute in the output to compile all data if needed.

sort

Order results by the given property and direction. The '+' sign indicate ascending order whereas the '-' indicate descending.

raw

TRUE to receive results as-is from Gemma, or FALSE to enable parsing. Raw results usually contain additional fields and flags that are omitted in the parsed results.

memoised

Whether or not to save to cache for future calls with the same inputs and use the result saved in cache if a result is already saved. Doing options(gemma.memoised = TRUE) will ensure that the cache is always used. Use forget_gemma_memoised to clear the cache.

file

The name of a file to save the results to, or NULL to not write results to a file. If raw == TRUE, the output will be a JSON file. Otherwise, it will be a RDS file.

overwrite

Whether or not to overwrite if a file exists at the specified filename.

...

Kept for compatibility. Ignored

Value

A data table with information about the queried dataset(s). A list if raw = TRUE. Returns an empty list if no datasets matched.

The fields of the output data.table are:

  • experiment.shortName: Shortname given to the dataset within Gemma. Often corresponds to accession ID

  • experiment.name: Full title of the dataset

  • experiment.ID: Internal ID of the dataset.

  • experiment.description: Description of the dataset

  • experiment.troubled: Did an automatic process within gemma or a curator mark the dataset as "troubled"

  • experiment.accession: Accession ID of the dataset in the external database it was taken from

  • experiment.database: The name of the database where the dataset was taken from

  • experiment.URI: URI of the original database

  • experiment.sampleCount: Number of samples in the dataset

  • experiment.batchEffectText: A text field describing whether the dataset has batch effects

  • experiment.batchCorrected: Whether batch correction has been performed on the dataset.

  • experiment.batchConfound: 0 if batch info isn't available, -1 if batch counfoud is detected, 1 if batch information is available and no batch confound found

  • experiment.batchEffect: -1 if batch p value < 0.0001, 1 if batch p value > 0.1, 0 if otherwise and when there is no batch information is available or when the data is confounded with batches.

  • experiment.rawData: -1 if no raw data available, 1 if raw data was available. When available, Gemma reprocesses raw data to get expression values and batches

  • geeq.qScore: Data quality score given to the dataset by Gemma.

  • geeq.sScore: Suitability score given to the dataset by Gemma. Refers to factors like batches, platforms and other aspects of experimental design

  • taxon.name: Name of the species

  • taxon.scientific: Scientific name for the taxon

  • taxon.ID: Internal identifier given to the species by Gemma

  • taxon.NCBI: NCBI ID of the taxon

  • taxon.database.name: Underlying database used in Gemma for the taxon

  • taxon.database.ID: ID of the underyling database used in Gemma for the taxon

Examples

get_taxon_datasets("human")
#> Warning: get_taxon_datasets is deprecated. please use get_datasets instead
#>     experiment.shortName
#>                   <char>
#>  1:              GSE2018
#>  2:              GSE4036
#>  3:              GSE3489
#>  4:              GSE1923
#>  5:               GSE361
#>  6:               GSE492
#>  7:               GSE713
#>  8:               GSE833
#>  9:               GSE420
#> 10:               GSE430
#> 11:               GSE675
#> 12:               GSE712
#> 13:               GSE701
#> 14:               GSE685
#> 15:               GSE593
#> 16:               GSE837
#> 17:               GSE590
#> 18:               GSE755
#> 19:               GSE994
#> 20:               GSE846
#>     experiment.shortName
#>                                                                            experiment.name
#>                                                                                     <char>
#>  1:                                                            Human Lung Transplant - BAL
#>  2:                                                                perro-affy-human-186940
#>  3: Patterns of gene dysregulation in the frontal cortex of patients with HIV encephalitis
#>  4: Identification of PDGF-dependent patterns of gene expression in U87 glioblastoma cells
#>  5:                                                   Mammary epithelial cell transduction
#>  6:                               Effect of prostaglandin analogs on aqueous humor outflow
#>  7:                                                        UV radiation-induced DNA damage
#>  8:                                                          Amyotrophic lateral sclerosis
#>  9:                                                                       Aortic stiffness
#> 10:  Effect of left ventricular assist device support on congestive heart failure patients
#> 11:                                     Time course analysis of response to HCMV infection
#> 12:                                        CVB3-infected HeLa cells (multiple time points)
#> 13:                 Transcriptional response of lymphoblastoid cells to ionizing radiation
#> 14:                                DACH1 inhibits TGF-beta signaling through binding Smad4
#> 15:                 Uterine Fibroid and Normal Myometrial Expression Profiles- U133 Arrays
#> 16:                                                                           angiogenesis
#> 17:                                                              USF1 haplotype comparison
#> 18:                                                         MRI lytic and no lytic lesions
#> 19:           Effects of cigarette smoke on the human airway epithelial cell transcriptome
#> 20:                                                                             Conversion
#>                                                                            experiment.name
#>     experiment.ID
#>             <int>
#>  1:             1
#>  2:             4
#>  3:            18
#>  4:            50
#>  5:            98
#>  6:           100
#>  7:           102
#>  8:           106
#>  9:           110
#> 10:           111
#> 11:           113
#> 12:           114
#> 13:           116
#> 14:           117
#> 15:           118
#> 16:           120
#> 17:           124
#> 18:           126
#> 19:           128
#> 20:           129
#>     experiment.ID
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          experiment.description
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <char>
#>  1:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Bronchoalveolar lavage samples collected from lung transplant recipients.  Numeric portion of sample name is an arbitrary patient ID and AxBx number indicates the perivascular (A) and bronchiolar (B) scores from biopsies collected on the same day as the BAL fluid was collected.  Several patients have more than one sample in this series and can be determined by patient number followed by a lower case letter.  Acute rejection state is determined by the combined A and B score - specifically, a combined AB score of 2 or greater is considered an acute rejection.
#>  2: Our laboratory has developed the first mouse model overexpressing a RNA-binding protein, the ELAV-like protein HuD, in the CNS under the control of the CaMKinII alpha promoter. Initial behavioral characterization of the mice revealed that they had significant learning deficits together with abnormalities in prepulse inhibition (PPI). At the molecular level, we found that the expression of the growth-associated protein GAP-43, one of the targets of HuD, was increased in the hippocampus of HuD transgenic mice. To characterize these mice further and to evaluate the utility of these animals in understanding human diseases, we propose to use DNA microarray methods. To test our hypothesis we propose 3 specific aims: 1) To characterize the pattern of gene expression in the hippocampus of HuD overexpressor mice 2) To compare the pattern of gene expression in our mouse model with that in the hippocampus of rats prenatally exposed to alcohol (FAS model) and 3) To compare the pattern of gene expression in our mouse model with that shown in post-mortem tissues of patients with schizophrenia. In our previous protocols we examined the pattern of gene expression in our HuD transgenic mice and in rats prenaltally exposed to alcohol. A report by another group (Hakak et al, 2001) showed that three of the HuD targets were upregulated in the prefrontal cortex of patients with schizophrenia. To evaluate whether other target of HuD may be affected in this illness, in the current protocol, we want to compare the pattern of expression in our transgenic mice with in tissue from patients with schizophrenia Based on the behavioral and molecular properties of our HuD transgenic mice we hypothesize that these animals may be good models for the studying the basis of learning disabilities and of diseases that show deficits in PPI such as fetal alcohol syndrome and schizophrenia. All 28 samples are derived from cerebellar tissues for patients with schizophrenia and matched controls.  The specimens were obtained from the Maryland Brain Collection according to NIH guidelines for confidentially and privacy. The protocol used in these studies was reviewed by our HRRC which found that our studies do not fall within the category of protocols monitored by the IRB (see attached letter form the HRRC). Specimens from 14 patients with a diagnosis of schizophrenia performed according to DSM-IV criteria and 14 sex-, age- and PMI-matched controls was included in this study. No differences were found between patients and control subjects in the average age (45±12 versus 43±10 years, p=0.86) or PMI (12±5 versus 16±6 hours, p=0.11). We will provide 28 samples containing 5 ug of RNA each in DEPC water (see validation of the quality of the RNA below). In addition, we include in our study animals treated with haloperidol as control for medication. These samples will be submitted in a separate protocol.\nDate GSE4036 Last Updated: Jan 13 2006\nContributors:  Nora I Perrone-Bizzozero\nIncludes GDS1917.\n Update date: Jun 14 2006.\n Dataset description GDS1917: Analysis of cortical samples corresponding to the crus I/VIIa area of the cerebellum from schizophrenia patients. A study indicates that targets of the RNA-binding ELAV-like protein HuD are overexpressed in the prefrontal cortex of patients with schizophrenia.
#>  3:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The neurodegenerative process in HIV encephalitis (HIVE) is associated with extensive damage to the dendritic and synaptic structure that often leads to cognitive impairment. Several mechanisms might be at play, including release of neurotoxins, oxidative stress and decreased activity of neurotrophic factors. Furthermore, HIV-mediated dysregulation of genes involved in neuronal maintenance might play an important role. For this purpose, cRNA was prepared from the brains of 17 AIDS patients for analysis with the Affymetrix Human U95Av2 GeneChip and analyzed with the GeneSpring Expression Analysis Software. Out of 12,625 genes analyzed, 74 were downregulated and 59 were upregulated compared to controls. Initial alternative analysis of RNA was performed by ribonuclease protection assay (RPA). In cases with HIVE, downregulated genes included neuronal molecules involved in synaptic plasticity and transmission (ion channels, synaptogyrin, synapsin II), cell cycle (p35, p39, CDC-L2, CDC42, PAK1) and signaling molecules (PI3K, Ras-Raf-MEK1), transcription factors and cytoskeletal components (MAP-1B, MAP-2, tubulin, adducin-2). Upregulated genes included those involved in neuroimmune (IgG, MHC, ?2microglobulin) and anti-viral responses (interferon-inducible molecules), transcription (STAT1, OLIG2, Pax-6) and signaling modulation (MEK3, EphB1) of the cytoskeleton (myosin, aduccin-3, radixin, dystrobrevin). Taken together, this study suggests that HIV proteins released from infected macrophages might not only induce a neuroinflammatory response, but also may promote neurodegeneration by interfering with neuronal transcription of genes involved in regulating signaling and cytoskeletal molecules important in maintaining synapto-dendritic functioning and integrity.\nDate GSE3489 Last Updated: Mar 07 2006\nContributors:  Eleanor S Roberts Dianne Langford Anthony Adame Edward Rockenstein Leslie Crews Howard S Fox Eliezer Masiliah Ian Everall\nIncludes GDS1726.\n Update date: May 30 2006.\n Dataset description GDS1726: Analysis of brain frontal cortex of HIV-seropositive patients with HIV encephalitis (HIVE). HIVE affects >40% of AIDS patients, promoting neurodegeneration and cognitive impairment. Results suggest HIV-mediated dysregulation of genes involved in neuronal maintenance might play an important role.
#>  4:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Overall study: Identification of PDGF-dependent patterns of gene expression in U87 glioblastoma cells.  RNA was obtained from triplicate dishes of 5 different groups of U87 cells, each (total 15) analyzed with one U95 microarray chip.  Three different comparisons were made: 1) Clone 3.1 (34580-34582) vs. clone 3.3 (34583-34585) vs. parent U87 (34592-34594).  Purpose: demonstrate that the gene expression profiles between these 3 cell lines are not different, so they could be pooled as a single untreated group.  2)  Pooled control group (34580-34585, 34592-34594) vs. clone 8.1 (34586-34588).  Purpose:  identify genes specifically controlled by autocrine PDGF activity.  3)  Clone 8.1 (34586-34588) vs. clone 8.1 treated with PDGF (34589-34591)  Purpose:  Identify genes specifically induced by exogenous PDGF.\nDate GSE1923 Last Updated: Dec 19 2005\nContributors:  David M Kaetzel Catherine Nutt Xuejun Peng Piam Shanehsaz Deqin Ma David N Louis\nIncludes GDS1730.\n Update date: May 02 2006.\n Dataset description GDS1730: Analysis of U87 glioblastoma (GBM) cell clones overexpressing a dominant-negative form of platelet-derived growth factor (PDGF) A subunit to inactive the PDGF autocrine signaling loop. The autocrine PDGF loop is a hallmark of GBM. Results identify genes regulated by oncogenic PDGF signaling.
#>  5:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Analysis of gene expression in mammary epithelial cells transduced with either hTERT, empty LXSN vector or empty BABE vector.\nDate GSE361 Last Updated: May 29 2005\nIncludes GDS337.\n Update date: May 21 2003.\n Dataset description GDS337: Effect of overexpression of the telomerase catalytic subunit (TERT) in mammary epithelial cells (HMEC).  Findings imply that ectopic telomerase expression modulates growth-controlling genes and enhances cell proliferation.
#>  6:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The purpose of this study is to discover genes that might increase aqueous humor outflow when human ciliary muscle or human trabecular meshwork cells are treated with the prostaglandin analogues latanoprost free acid or prostaglandin F2alpha. Five tissue donors were pooled on each chip.\nDate GSE492 Last Updated: Jul 27 2006\nContributors:  Paul   Russell\nIncludes GDS359.\n Update date: Apr 14 2004.\n Dataset description GDS359: Glaucoma study investigating molecular basis of increase in aqueous humor outflow when human ciliary muscle or human trabecular meshwork cells are treated with prostaglandin analogs latanoprost free acid or prostaglandin F2alpha.
#>  7:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           DNA damage caused by UV radiation initiates cellular recovery mechanisms, which involve activation of DNA damage response pathways, cell cycle arrest and apoptosis. To assess cellular transcriptional responses to UVC-induced DNA damage we compared time course responses of human skin fibroblasts to low and high doses of UVC radiation known to induce a transient cellular replicative arrest or apoptosis, respectively. UVC radiation elicited >3-fold changes in 460 out of 12,000 transcripts and 89% of these represented downregulated transcripts. Only 5% of the regulated genes were common to both low and high doses of radiation. Cells inflicted with a low dose of UVC exhibited transcription profiles demonstrating transient regulation followed by recovery, whereas the responses were persistent after the high dose. A detailed clustering analysis and functional classification of the targets implied regulation of biologically divergent responses and suggested involvement of transcriptional and translational machinery, inflammatory, anti-proliferative and anti-angiogenic responses. The data support the notion that UVC radiation induces prominent, dose-dependent downregulation of transcription. However, the data strongly suggest that transcriptional repression is also target gene selective. Furthermore, the results demonstrate that dose-dependent induction of cell cycle arrest and apoptosis by UVC radiation are transcriptionally highly distinct responses.\nDate GSE713 Last Updated: Jun 15 2005\nContributors:  Massimiliano Gentile Marikki Laiho Leena Latonen\nIncludes GDS400.\n Update date: Oct 08 2003.\n Dataset description GDS400: Temporal analysis of differences in WS1 human skin fibroblast gene expression response to low (10 J/m2; induces transient cellular replicative arrest) or high (50 J/m2; induces apoptosis) doses of short wavelength UV radiation (UVC; 254 nm).
#>  8:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Identification of amyotrophic lateral sclerosis (ALS) associated genes. Post mortem spinal cord grey matter from sporadic and familial ALS patients compared with controls.\nDate GSE833 Last Updated: Jun 28 2005\nContributors:  Steven R Gullans Robert H Brown Fernando Dangond\nIncludes GDS412.\n Update date: Nov 24 2003.\n Dataset description GDS412: Identification of amyotrophic lateral sclerosis (ALS) associated genes. Post mortem spinal cord grey matter from sporadic and familial ALS patients compared with controls. Attempt to identify mechanisms by which ALS destroys motor neurons.
#>  9:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BACKGROUND: Previous genomic studies with human tissues have compared differential gene expression between 2 conditions (ie, normal versus diseased) to identify altered gene expression in a binary manner; however, a potentially more informative approach is to correlate the levels of gene expression with quantitative physiological parameters. METHODS AND RESULTS: In this study, we have used this approach to examine genes whose expression correlates with arterial stiffness in human aortic specimens. Our data identify 2 distinct groups of genes, those associated with cell signaling and those associated with the mechanical regulation of vascular structure (cytoskeletal-cell membrane-extracellular matrix). Although previous studies have concentrated on the contribution of the latter group toward arterial stiffness, our data suggest that changes in expression of signaling molecules play an equally important role. Alterations in the profiles of signaling molecules could be involved in the regulation of cell cytoskeletal organization, cell-matrix interactions, or the contractile state of the cell. CONCLUSIONS: Although the influence of smooth muscle contraction/relaxation on arterial stiffness could be controversial, our provocative data would suggest that further studies on this subject are indicated.\nDate GSE420 Last Updated: May 29 2005\nContributors:  Richard Pratt Stephane Laurent\nIncludes GDS461.\n Update date: Nov 20 2003.\n Dataset description GDS461: Examination of molecular basis of aortic stiffness which predicts pulse pressure, coronary disease, stroke and cardiovascular mortality. Biopsies from patients with increased aortic stiffness compared with patients with distensible aorta.
#> 10:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Molecular analysis of the effect left ventricular assist device (LVAD) support has on congestive heart failure patients.\nDate GSE430 Last Updated: Jun 15 2005\nContributors:  Robert J Bache Yingjie Chen Li Yunfang Soon Park Leslie W Miller Jennifer Hall Xinqiang Han Emil Missov\nIncludes GDS462.\n Update date: Nov 20 2003.\n Dataset description GDS462: Molecular analysis of effect left ventricular assist device (LVAD) support in left ventricular myocardium tissue of patients with idiopathic dilated cardiomyopathy and end-stage heart failure. Results suggest LVAD support may improve endothelial function.
#> 11:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The effect of human cytomegalovirus infection on cellular mRNA accumulation was analyzed by gene chip technology over a 48h time course.\nDate GSE675 Last Updated: May 29 2005\nContributors:  Thomas Shenk Edward P Browne Bret Wing David Coleman\nIncludes GDS476.\n Update date: Nov 25 2003.\n Dataset description GDS476: Expression profiles of foreskin fibroblasts at 12 time points beginning 30 minutes after infection by human cytomegalovirus (HCMV) and continuing until 48 hours after infection.
#> 12:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       HeLa cells were serum starved and preincubated with DMSO (vehicle) and infected with CVB3.  Following infection, virus was removed and fresh media containing 10% fetal bovine serum was added for the remainder of the infectious process.  At 0, 30 minutes, 1, 3, 5, 7 and 9 hours following CVB3 infection, RNA was isolated, processed and hybridized to GeneChip®s.\nDate GSE712 Last Updated: Oct 28 2005\nContributors:  Decheng Yang Jingchun Zhang Bobby Yanagawa Nana Rezai Timothy J Triche Bruce McManus Zsuzsanna Hollander Ji Yuan Honglin Luo Raymond T Ng\nIncludes GDS477.\n Update date: Nov 28 2003.\n Dataset description GDS477: Temporal analaysis of an in vitro model of coxsackievirus B3 (CVB3) infection. HeLa cells infected with either CVB3 or control PBS and samples examined at 0, 0.5, 1, 3, 5, 7 and 9 hours following treatment.
#> 13:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Time series for gene expression changes following 3 Gy and 10 Gy of ionizing radiation exposure.\nDate GSE701 Last Updated: May 29 2005\nContributors:  Vivian G Cheung Kuang-Yu Jen\nIncludes GDS479.\n Update date: Nov 28 2003.\n Dataset description GDS479: Temporal analysis of effect of 3 Gy and 10 Gy ionizing radiation (IR) exposure on lymphoblastoid cells. Various time points up to 24 hours examined.
#> 14:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The vertebrate homologues of Drosophila dachsund, DACH1 and DACH2, have been implicated as important regulatory genes in development. DACH1 plays a role in retinal and pituitary precursor cell proliferation and DACH2 plays a specific role in myogenesis. DACH proteins contain a domain (DS-domain) that is conserved with the proto-oncogenes Ski and Sno. Since the Ski/Sno proto-oncogenes repress AP-1 and SMAD signaling, we hypothesized that DACH1 might play a similar cellular function. Herein, DACH1 was found to be expressed in breast cancer cell lines and to inhibit TGF-beta induced apoptosis. DACH1 repressed TGF-beta induction of AP-1 and Smad signaling in gene reporter assays and repressed endogenous TGF-beta responsive genes by microarray analyses. DACH1 bound to endogenous NCoR and Smad4 in cultured cells and DACH1 co-localized with NCoR in nuclear dot-like structures. NCoR enhanced DACH1 repression and the repression of TGF-beta-induced AP-1 or Smad-signaling by DACH1 required the DACH1 DS domain. The DS-domain of DACH was sufficient for NCoR-binding at a Smad4-binding site. Smad4 was required for DACH1 repression of Smad signaling. In Smad4 null HTB-134 cells, DACH1 inhibited the activation of SBE-4 reporter activity induced by Smad2 or Smad3 only in the presence of Smad4. DACH1 participates in the negative regulation of TGF-beta signaling by interacting with NCoR and Smad4.\nDate GSE685 Last Updated: Jun 15 2005\nContributors:  Kveta Cveklova Maria A Davoli Richard G Pestell Chenguang Wang Kongming Wu Mark D'Amico Robert G Russell Anping Li Zbynek Kozmik Ying Yang Michael P Lisanti Ales Cvekl\nIncludes GDS483.\n Update date: Dec 01 2003.\n Dataset description GDS483: Analysis of effect of DACH1 in breast cancer cell line MDA-MB-231. DACH1 induced by ponasterone A treatment for 0, 18 or 36 hours.  DACH1 may regulate aberrant TGF beta signals that have role in breast cancer progression.
#> 15:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Our study seeks to identify genes differentially expressed between uterine leiomyomas and normal myometrial tissue. This series consists of samples derived from normal myometrium and uterine leiomyomas obtained from fibroid afflicted patients.Total RNA was extracted from samples, converted to biotin-labeled cRNA, hybridized to oligonucleotide arrays, and followed by model based expression analysis.  In order to select differentially expressed genes of interest, dChip model-based expression analysis was employed. Significant genes were identified, utilizing the dChip software, as having an average fold change of > +1.5 or < -1.5 between leiomyoma and normal myometrium and p < 0.05. Under these conditions the 226 genes in the following list were identified.\nDate GSE593 Last Updated: May 29 2005\nContributors:  Dawn B Milliken Ryan R Davis Jeffrey P Gregg Paul J Hoffman\nIncludes GDS484.\n Update date: Dec 01 2003.\n Dataset description GDS484: Comparison of normal myometrium and uterine leiomyomas obtained from fibroid afflicted patients.
#> 16:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HUVECs (human umbilical cord vein endothelial cells) are treated with the angiogenic factors VEGF-A (vascular endothelial growth factor-A) and PlGF (placental growth factor) in low or high serum media.\nDate GSE837 Last Updated: May 29 2005\nIncludes GDS495.\n Update date: Mar 01 2004.\n Dataset description GDS495: Temporal analysis of human umbilical cord vein endothelial cell (HUVEC) isolates treated with angiogenic factors vascular endothelial growth factor-A (VEGF-A) and placental growth factor (PlGF) in low or high serum media.
#> 17:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Comparison of gene expression for individuals affected with FCHL exhibiting the USF1 susceptibility haplotype and FCHL affected indiviuals carrying the protective haplotype.\nDate GSE590 Last Updated: Oct 28 2005\nContributors:  Massimiliano Gentile Leena Peltonen Päivi Pajukanta Rita M Cantor Janet S Sinsheimer Aldons J Lusis Heidi E Lilja\nIncludes GDS513.\n Update date: Mar 18 2004.\n Dataset description GDS513: Comparison of subcutaneous adipose tissue from individuals with familial combined hyperlipidemia (FCHL) exhibiting either upstream transcription factor 1 (USF1) susceptibility or protective haplotype. USF1 regulates glucose and lipid metabolism genes.
#> 18:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This series represents samples of multiple myeloma patients with and without bone lytic lesion by MRI.\nDate GSE755 Last Updated: May 29 2005\nContributors:  John D Shaughnessy Erik Rasmussen Yupo Ma Bart Barlogie Fenghuang Zhan Ronald Walker Erming Tian\nIncludes GDS531.\n Update date: Mar 29 2004.\n Dataset description GDS531: Comparison of gene expression in bone marrow plasma cells of multiple myeloma patients with and without bone lesions. Osteolytic lesions increase in multiple myeloma patients.
#> 19:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A number of studies have shown that cigarette smoking produces a field defect, such that genetic mutations induced by smoking occur throughout the lung and its intra and extra-pulmonary airways. Based on this concept, we have begun this study, which has as its goal the definition of the normal airway transcriptome, an analysis of how that transcriptome is affected by cigarette smoke, and to explore the reversibility of altered gene expression when smoking has been discontinued. We have obtained brushings from intra-pulmonary airways (the right upper lobe carina) and scrapings from the buccal mucosa, from normal smoking and non-smoking volunteers (including 34 Current Smokers, 23 Never Smokers and 18 Former Smokers). RNA was isolated from these samples and gene expression profiles from intra-pulmonary airway epithelial cells were analyzed using Affymetrix U133A human gene expression arrays. All microarray data from the experiments described above have been stored, preprocessed and analyzed in a relational MySQL database that is accessible through our website at http://pulm.bumc.bu.edu/aged.\nDate GSE994 Last Updated: May 29 2005\nContributors:  Jennifer Beane Frank Schembri John Palma Gang Liu Jerome Brody Avrum Spira Xuemei Yang Vishal Shah\nIncludes GDS534.\n Update date: May 02 2004.\n Dataset description GDS534: Analysis of cigarette smoking-induced changes in  bronchial epithelia, and reversibility of effects when smoking is discontinued. May provide insight to molecular events leading to chronic obstructive pulmonary disease (COPD) and lung cancer.
#> 20:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     AR overexpression converts antagonists to weak agonists.\nDate GSE846 Last Updated: May 29 2005\nContributors:  Derek Welsbie Charles Sawyers Charlie Chen\nIncludes GDS536.\n Update date: Mar 30 2004.\n Dataset description GDS536: Examination of antagonist to agonist conversion in androgen receptor-expressing hormone-sensitive LNCaP prostate cancer cells. Cells challenged with increasing doses of R1881, or bicalutamide.
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          experiment.description
#>     experiment.troubled experiment.accession experiment.database
#>                  <lgcl>               <char>              <char>
#>  1:               FALSE              GSE2018                 GEO
#>  2:               FALSE              GSE4036                 GEO
#>  3:               FALSE              GSE3489                 GEO
#>  4:               FALSE              GSE1923                 GEO
#>  5:               FALSE               GSE361                 GEO
#>  6:               FALSE               GSE492                 GEO
#>  7:               FALSE               GSE713                 GEO
#>  8:               FALSE               GSE833                 GEO
#>  9:               FALSE               GSE420                 GEO
#> 10:               FALSE               GSE430                 GEO
#> 11:               FALSE               GSE675                 GEO
#> 12:               FALSE               GSE712                 GEO
#> 13:               FALSE               GSE701                 GEO
#> 14:               FALSE               GSE685                 GEO
#> 15:               FALSE               GSE593                 GEO
#> 16:               FALSE               GSE837                 GEO
#> 17:               FALSE               GSE590                 GEO
#> 18:               FALSE               GSE755                 GEO
#> 19:               FALSE               GSE994                 GEO
#> 20:               FALSE               GSE846                 GEO
#>     experiment.troubled experiment.accession experiment.database
#>                                                 experiment.URI
#>                                                         <char>
#>  1: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE2018
#>  2: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE4036
#>  3: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE3489
#>  4: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE1923
#>  5:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE361
#>  6:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE492
#>  7:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE713
#>  8:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE833
#>  9:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE420
#> 10:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE430
#> 11:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE675
#> 12:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE712
#> 13:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE701
#> 14:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE685
#> 15:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE593
#> 16:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE837
#> 17:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE590
#> 18:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE755
#> 19:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE994
#> 20:  https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE846
#>                                                 experiment.URI
#>     experiment.sampleCount experiment.lastUpdated experiment.batchEffectText
#>                      <int>                 <POSc>                     <char>
#>  1:                     34    2024-02-10 08:31:41    NO_BATCH_EFFECT_SUCCESS
#>  2:                     28    2023-12-19 13:29:05       SINGLE_BATCH_SUCCESS
#>  3:                     28    2023-12-19 05:05:46              NO_BATCH_INFO
#>  4:                     15    2023-12-17 18:06:41    BATCH_CORRECTED_SUCCESS
#>  5:                     20    2023-12-19 06:49:29              NO_BATCH_INFO
#>  6:                     12    2023-12-20 02:28:26    BATCH_CORRECTED_SUCCESS
#>  7:                     20    2023-12-20 22:21:41              NO_BATCH_INFO
#>  8:                     11    2023-12-21 05:48:43              NO_BATCH_INFO
#>  9:                     10    2023-12-19 15:53:04              NO_BATCH_INFO
#> 10:                     14    2023-12-19 17:18:40              NO_BATCH_INFO
#> 11:                     12    2023-12-20 19:59:57              NO_BATCH_INFO
#> 12:                     13    2023-12-20 22:15:09              NO_BATCH_INFO
#> 13:                     12    2023-12-20 21:33:32              NO_BATCH_INFO
#> 14:                      9    2023-09-07 21:30:56              NO_BATCH_INFO
#> 15:                     10    2023-12-20 12:42:48              NO_BATCH_INFO
#> 16:                     33    2023-12-21 06:01:54              NO_BATCH_INFO
#> 17:                     10    2023-12-20 12:28:23              NO_BATCH_INFO
#> 18:                    173    2023-12-21 01:05:02              NO_BATCH_INFO
#> 19:                     75    2023-12-21 14:29:34    BATCH_CORRECTED_SUCCESS
#> 20:                     17    2023-12-21 07:05:17              NO_BATCH_INFO
#>     experiment.sampleCount experiment.lastUpdated experiment.batchEffectText
#>     experiment.batchCorrected experiment.batchConfound experiment.batchEffect
#>                        <lgcl>                    <num>                  <num>
#>  1:                     FALSE                        1                      1
#>  2:                     FALSE                        1                      1
#>  3:                     FALSE                        0                      0
#>  4:                      TRUE                        1                      1
#>  5:                     FALSE                        0                      0
#>  6:                      TRUE                        1                      1
#>  7:                     FALSE                        0                      0
#>  8:                     FALSE                        0                      0
#>  9:                     FALSE                        0                      0
#> 10:                     FALSE                        0                      0
#> 11:                     FALSE                        0                      0
#> 12:                     FALSE                        0                      0
#> 13:                     FALSE                        0                      0
#> 14:                     FALSE                        0                      0
#> 15:                     FALSE                        0                      0
#> 16:                     FALSE                        0                      0
#> 17:                     FALSE                        0                      0
#> 18:                     FALSE                        0                      0
#> 19:                      TRUE                        1                      1
#> 20:                     FALSE                        0                      0
#>     experiment.batchCorrected experiment.batchConfound experiment.batchEffect
#>     experiment.rawData geeq.qScore geeq.sScore taxon.name taxon.scientific
#>                  <num>       <num>       <num>     <char>           <char>
#>  1:                  1   0.9976341      0.8750      human     Homo sapiens
#>  2:                  1   0.9971246      0.7500      human     Homo sapiens
#>  3:                 -1   0.4098798      0.5000      human     Homo sapiens
#>  4:                  1   0.5706032      0.6250      human     Homo sapiens
#>  5:                 -1   0.4063306      0.1250      human     Homo sapiens
#>  6:                  1   0.8561848      0.3750      human     Homo sapiens
#>  7:                 -1   0.2669028      0.5000      human     Homo sapiens
#>  8:                 -1  -0.0616038      0.0000      human     Homo sapiens
#>  9:                 -1   0.2512567      0.1250      human     Homo sapiens
#> 10:                 -1   0.4099263      0.5000      human     Homo sapiens
#> 11:                 -1   0.1303742      0.1250      human     Homo sapiens
#> 12:                 -1   0.1302309      0.1250      human     Homo sapiens
#> 13:                 -1   0.1283844      0.1250      human     Homo sapiens
#> 14:                 -1   0.2789924      0.4625      human     Homo sapiens
#> 15:                 -1   0.4050721      0.2500      human     Homo sapiens
#> 16:                 -1  -0.1569077      0.5000      human     Homo sapiens
#> 17:                 -1   0.2736367      0.5000      human     Homo sapiens
#> 18:                 -1   0.4021395      0.2500      human     Homo sapiens
#> 19:                  1   0.9969304      0.8750      human     Homo sapiens
#> 20:                 -1   0.1346832      0.5000      human     Homo sapiens
#>     experiment.rawData geeq.qScore geeq.sScore taxon.name taxon.scientific
#>     taxon.ID taxon.NCBI taxon.database.name taxon.database.ID
#>        <int>      <int>              <char>             <int>
#>  1:        1       9606                hg38                87
#>  2:        1       9606                hg38                87
#>  3:        1       9606                hg38                87
#>  4:        1       9606                hg38                87
#>  5:        1       9606                hg38                87
#>  6:        1       9606                hg38                87
#>  7:        1       9606                hg38                87
#>  8:        1       9606                hg38                87
#>  9:        1       9606                hg38                87
#> 10:        1       9606                hg38                87
#> 11:        1       9606                hg38                87
#> 12:        1       9606                hg38                87
#> 13:        1       9606                hg38                87
#> 14:        1       9606                hg38                87
#> 15:        1       9606                hg38                87
#> 16:        1       9606                hg38                87
#> 17:        1       9606                hg38                87
#> 18:        1       9606                hg38                87
#> 19:        1       9606                hg38                87
#> 20:        1       9606                hg38                87
#>     taxon.ID taxon.NCBI taxon.database.name taxon.database.ID